home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
DDJMAG
/
DDJ9110.ZIP
/
STRING.ZIP
/
STRINE.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1991-07-30
|
323b
|
20 lines
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <string.hpp>
int operator!=(const String &a, const String &b)
{
return !(a == b);
}
int operator!=(const String &a, const char *s)
{
return !(a == s);
}
int operator!=(const char *s, const String &a)
{
return !(a == s);
}